.loading-modal .modal-dialog {
    display: table;
    position: relative;
    margin: 0 auto;
    top: calc(50% - 24px);
}

.loading-modal .modal-dialog .modal-content {
    background-color: transparent;
    border: none;
}

@media (max-width: 575px) {
    .modal-body {
        max-height: calc(100vh - 225px) !important;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .modal-body {
        max-height: calc(100vh - 170px) !important;
    }
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.cursor-pointer {
    cursor: pointer;
}